home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / include / incl98.zoo / process.h < prev    next >
C/C++ Source or Header  |  1993-11-05  |  735b  |  31 lines

  1. /* defines for spawnve, etc. */
  2.  
  3. #ifndef _PROCESS_H
  4. #define _PROCESS_H
  5.  
  6. #ifndef _COMPILER_H
  7. #include <compiler.h>
  8. #endif
  9.  
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13.  
  14. #define P_WAIT        0
  15. #define P_NOWAIT    1
  16. #define P_OVERLAY    2
  17.  
  18. __EXTERN int    spawnv    __PROTO((int, const char *, char *const *));
  19. __EXTERN int    spawnve    __PROTO((int, const char *, char *const *, char *const *));
  20. __EXTERN int    _spawnve __PROTO((int, const char *, char *const *, char *const *));
  21. __EXTERN int    spawnvp    __PROTO((int, const char *, char *const *));
  22. __EXTERN int    spawnle    __PROTO((int, const char *, ...));
  23. __EXTERN int    spawnl    __PROTO((int, const char *, ...));
  24. __EXTERN int    spawnlp    __PROTO((int, const char *, ...));
  25.  
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29.  
  30. #endif /* _PROCESS_H */
  31.